home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / mambo_xss2.nasl < prev    next >
Text File  |  2005-01-14  |  1KB  |  51 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. if (description)
  5. {
  6.  script_id(12045);
  7.  script_bugtraq_id(9588);
  8.  script_version ("$Revision: 1.2 $");
  9.  
  10.  script_name(english:"Mambo Site Server XSS");
  11.  desc["english"] = "
  12. Mambo Site Server is an open source Web Content Management System. An attacker 
  13. may use it to perform a cross site scripting attack on this host.
  14.  
  15. Solution: Upgrade to the latest version of this software
  16. Risk factor : Medium";
  17.  
  18.  script_description(english:desc["english"]);
  19.  script_summary(english:"Determine if Mambo Site Server is vulnerable to xss attack");
  20.  script_category(ACT_GATHER_INFO);
  21.  script_family(english:"CGI abuses", francais:"Abus de CGI");
  22.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  23.  script_dependencie("find_service.nes", "http_version.nasl", "cross_site_scripting.nasl");
  24.  script_require_ports("Services/www", 80);
  25.  exit(0);
  26. }
  27.  
  28. include("http_func.inc");
  29. include("http_keepalive.inc");
  30.  
  31. port = get_http_port(default:80);
  32.  
  33. if(!get_port_state(port))exit(0);
  34. if(get_kb_item(string("www/", port, "/generic_xss"))) exit(0);
  35. if(!can_host_php(port:port)) exit(0);
  36.  
  37.  
  38. foreach d (cgi_dirs())
  39. {
  40.  url = string(d, "/index.php?option=content&task=view&id=1&Itemid=<script>foo</script>");
  41.  req = http_get(item:url, port:port);
  42.  buf = http_keepalive_send_recv(port:port, data:req, bodyonly:1);
  43.  if( buf == NULL ) exit(0);
  44.  
  45.  if ( "<script>foo</script>" >< buf)
  46.    {
  47.     security_warning(port);
  48.     exit(0);
  49.    }
  50. }
  51.